home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / misc / memtest.readme < prev    next >
Text File  |  1993-02-03  |  2KB  |  60 lines

  1. Short: Memory Tester
  2.  
  3. /*
  4.  * System Memory test routine
  5.  * Version 4.1
  6.  * Copyrighted by Custom Services 1987 ***All rights reserved***
  7.  *
  8.  * This routine will run standard memory tests on your
  9.  * memory.  The options are:
  10.  * -F Test External memory
  11.  * -S Test System Chip memory
  12.  * -L Long memory test enabled
  13.  * -V Verbose messages
  14.  * -D Debug messages
  15.  * -A all memory tests(except long)
  16.  * -B Sum Test only
  17.  * -E Values test only
  18.  *
  19.  * Chip memory will be tested first if requested then Fast memory
  20.  *
  21.  * Memory will be allocated using the standard system allocation
  22.  * routines.  What ever memory is left when this program runs will
  23.  * be tested.  A linked list of memory is made for both Chip and
  24.  * Fast memory.
  25.  *
  26.  * The Long test will run faster on very fragmented memory(small blocks)
  27.  * but will be more effective on unfragmented memory.  This test will
  28.  * take a very long time( time is proportional to Memory squared)
  29.  *
  30.  * The Values tests on each block will be:
  31.  *   a) zero/non zero byte
  32.  *   b) alternating bit test
  33.  *   c) do all locations in block
  34.  * The Long test is in addition to the Value test.  For each value
  35.  * tested in the Values test:
  36.  *   a) complement the value
  37.  *   b) check each location to if bits changed
  38.  *   c) check complemented location for bits changed
  39.  *   d) do all locations in block
  40.  * The Sum test on each block will be:
  41.  *   a) store sum of upper 16 bits of address plus lower 16 bits
  42.  *   b) check contents after all are stored.
  43.  *   c) do all locations in block
  44.  * The Sum test is good for dynamic memory failures.
  45.  * The Value and Long tests are good for Hard failures.
  46.  */
  47.  
  48. This program is shareware.  You may freely distribute it.  If you use
  49. it, you may wish to register it.  Registrations fee:$10.00.
  50.  
  51. The advantages of registration are:
  52.  
  53.    -- Updates will be made available to you
  54.    -- Other Custom Services programs will be made available to you.
  55.    -- STU, the Amiga Diagnostic(normal list price of $34.95) will
  56.       be available for $20.00 plus s&h.  STU is a better memory tester
  57.       (much faster, better tests) plus a disk drive test program!
  58.  
  59. Uploader: dfs5716@usl.edu
  60.